home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / bossa.arc / BOSS_SUP.ARC / REV.HST < prev    next >
Text File  |  1990-03-12  |  26KB  |  571 lines

  1. /*
  2. ** WINDOWS - Simple but Elegant Window Functions 
  3. **           (Datalight, Lattice, CI86, Microsoft, Borland
  4. **            Zortech, Mix PowerC, Manx AZTEC C, WATCOM)
  5. **
  6. ** Copyright (c) 1984 - 1990 - Philip A. Mongelluzzo
  7. ** All rights reserved.
  8. **
  9. ** Revision History in reverse order:
  10. **
  11. **  The following changes were incorporated in the 02.15.90 release:
  12. **
  13. **  01.10.90 -  WCVLIB.ASM created.  This file contains the assembly 
  14. **              language routines for WATCOM 7.0.  Previous versions of
  15. **              WATCOM should use MSVLIB.ASM.  
  16. **
  17. **  01.05.89 -  Physical windows wider than 80 columns were not 
  18. **              working correctly.  Thanks to all who reported this
  19. **              problem. (wn_actic.c, wn_sup.c, windows.c, wn_init.c).
  20. **              The constant "4096" was not removed in wn_savres. It
  21. **              does not impact the physical sceen size logic but does 
  22. **              allow the code of those who have "tinkered" with video 
  23. **              pages to continue to work.
  24. **
  25. **  12.22.89 -  Re-assembled all assembly language routines to insure
  26. **              that wni_mxcols, wni_mxrows, and wni_mxneed were being
  27. **              used correctly.
  28. **
  29. **  11.30.89 -  ZORTECH 2.0 Support.  Please note that ZORLIB version
  30. **              2.0 can not create a usable LWIN.LIB.  Microsoft's LIB
  31. **              works fine and should be used.  ZORTECH has been notified
  32. **              of the problem.
  33. **
  34. **  11.24.89 -  jeesh... One line exploding windows exploded again!
  35. **              This time we got the gremlin!! Tnx to Michael Canfield
  36. **              for suppling the test case.
  37. **
  38. **  (11.15.89)  **
  39. **
  40. **  10.28.89 -  Modified wn_title to insure ALL compiliers process
  41. **              hex values that are imbedded into the title properly.
  42. **              (e.g. "Hello \xcd There!")
  43. **              Thanks to Don Wahl for pointing out the discrepancy.
  44. **
  45. **  10.25.89 -  It would appear that the PC/PC_CLONE BIOS can not deal 
  46. **              with scrolling single line windows.  wn_insrow() was taught 
  47. **              to erase single line windows and avoid using the 
  48. **              BIOS for this special case.  This problem does not exist
  49. **              on AT or PC/2 class machines.  Thanks to Harold Jackson
  50. **              for reporting the problem.
  51. **
  52. **  10.24.89 -  Eliminated a potential multiple cursor problem with
  53. **              the mouse cursor when a window is being saved/restored
  54. **              with an active mouse.  Tip of the hat to Steve Thatcher
  55. **              of Attachmate.
  56. **
  57. **  10.20.89 -  Corrected a bug in wn_open to allow 1 line exploding 
  58. **              windows to function properly.  Thanks to John F. La Fleur 
  59. **              for reporting the problem.
  60. **
  61. **              wn_puts was not handling borderless windows properly.
  62. **              Thanks to Tim Keane for reporting the problem.
  63. **
  64. **              Lattice Version 6.0 Support
  65. **
  66. **  09.27.89 -  Logic was added to wn_input to insure that user supplied
  67. **              non null editing buffers are the same lenth as their masks!
  68. **              This logic will prevent garbage from appearing when 
  69. **              wn_input is called to peform data entry with a prefilled
  70. **              value in the user buffer (ubuff).
  71. **
  72. **  09.05.89 -  The forms package now treats the ESCcape
  73. **              like most common applications do.  That is to say that it 
  74. **              causes the current operation to cease.  Current 
  75. **              Window BOSS users please note that this feature can
  76. **              be disabled by removing the code in wn_frmget that contains
  77. **              "ESC.001" as part of the comments.
  78. **
  79. **  09.05.89 -  Added 1st character sensitivity to the sample popup menu
  80. **              code. ** NOTE ** -> For menu's that have different 1st
  81. **              character picks.  
  82. **              
  83. **  (08.25.89)  **
  84. **
  85. **  08.23.89 -  Exploding window opens were failing on SOME 
  86. **              adapters.  Even size exploding windows were
  87. **              failing. Corrected!
  88. **              Thanks to Richard Allen for his assistance.
  89. **
  90. **  The following changes were incorporated in the 07.01.89 release:
  91. **
  92. **  06.17.89 -  Lattice 3.41!! ... The version release race is on!
  93. **
  94. **  05.29.89 -  Mix Power C 1.30 Support.  
  95. **
  96. **  05.25.89 -  Added wn_gutext and wn_gltext.  Get upper case only
  97. **              and lower case only text functions.  Thanks to
  98. **              Charlie Munao for the suggestion.  Improved code 6/6/89.
  99. **
  100. **  05.23.89 -  wn_frmcls now sets the form pointer to the form being
  101. **              closed to NFRM and the individual field pointers to
  102. **              NFLD. This should help those who attempt to dectect
  103. **              if a form/field is active.        
  104. **
  105. **  05.10.89 -  wn_close now sets the window pointer to the window 
  106. **              being closed to WNLPTR.  This should help those who
  107. **              attempt to detect if a window is open.
  108. **
  109. **           -  Moved definition of FAR MEMORY marcos from "wn_sup.c"
  110. **              and "wn_activ.c" to "windows.h".
  111. **
  112. **  05.06.89 -  By popular request... WN_FRMGET now displays both the
  113. **              field prompt and data entry mask for all fields prior
  114. **              to accepting input for the 1st field.  Accomplished by
  115. **              introducing "wni_frmflg" which is used/tested by
  116. **              all the data entry functions, wn_input, and wn_frmget.
  117. **
  118. **  05.05.89 -  Exploding window logic was tweeked to provide smoother
  119. **              explosions.  
  120. **
  121. **  05.04.89 -  Incorporated support for user defined PHYSICAL screen
  122. **              size.  New globals: wni_mxrows, wni_mxcols, wni_mxneed.
  123. **              Globals are defined in "windows.c" and are referenced in
  124. **              "windows.h".  The globals are max rows, max cols, and max
  125. **              memory required to save a *complete* screen image (rows *
  126. **              col * 2).  A new version of wn_init, wn_psinit has be
  127. **              provided to properly set the globals.  Refer to the manual
  128. **              for a complete discussion.  The defaults are 25, 80, and 
  129. **              4000.  Usefull for applications and/or systems that run
  130. **              in 43 line EGA or 50 line VGA mode.  Since The BOSS
  131. **              assumes the screen size to be fixed, wn_psinit must be
  132. **              called before ANY windows are opened.
  133. **
  134. **  04.30.89 -  v_kstat now returns TRUE rather than (-1). This conforms
  135. **              to the constant in "windows.h".  Thanks to Clive Basson
  136. **              at Infostat!
  137. **
  138. **           -  wns_dput (internal routine) was modified to call
  139. **              wns_savres for all writes.  This will improve
  140. **              normal screen output (speed) in most cases.
  141. **
  142. **           -  wns_drow (internal routine) now calls wns_savres 
  143. **              for all writes. This will improve normal screen 
  144. **              output (speed) in most cases.
  145. **
  146. **           -  wn_title now calls wn_dput to write title for 
  147. **              faster title writes.
  148. **
  149. **  04.15.89 -  wn_gulong corrected to use common "%lu" .vs. "%U"
  150. **
  151. **  04.05.89 -  Watcom 7.0 Support.  Tip of the hat to the folks at
  152. **              the Watcom Compiler factory... Once again, they proved
  153. **              that you can release a MAJOR upgrade without breaking
  154. **              anybody's hard work (code).
  155. **
  156. **  04.04.89 -  Lattice 3.4X support. (LC3) Tip of the hat to
  157. **              William Hinkle & Jon Martin (UNISYS) for thier comments,
  158. **              suggestions and support.
  159. **
  160. **           -  Float/Double promotion & demotion caused wn_gfloat 
  161. **              trouble.  Resolved with #if LC3 in wn_gfloat. (LC3)
  162. **
  163. **           -  windows.h was modified to eliminate warnings 
  164. **              about undefined control blocks and include
  165. **              stdlib.h for proper memory allocation
  166. **              prototypes. (LC3)
  167. **
  168. **           -  Fixed LCP.BAT, APMODEL.BAT, and ADMODE.BAT (LC3)
  169. **
  170. **           -  Eliminated *true* unreferenced variables. (LC3)
  171. **
  172. **  03.11.89 -  Quick C Version 2.0 support. 
  173. **
  174. **  03.10.89 -  wn_frmopn/cls was tweeked to be a bit smarter about
  175. **              memory allocation & deallocation.  Tip of the hat
  176. **              to Barry Roomberg & Peter Spreadborough.  This 
  177. **              solves the *very* random "NULL POINTER" message
  178. **              on exit. 
  179. **
  180. **  The following changes were incorporated in the 02.01.89 release:
  181. **
  182. **  02.01.89 -  Mouse support, get double, get unsigned long,
  183. **              get password, left justify string, right justify string
  184. **              center string, delete leading and/or trailing blanks.
  185. **              Files: wn_mouse.c, wn_string.c, wn_gpword.c
  186. **              Files: wn_gdouble.c, wn_gulong.c
  187. **
  188. **  12.26.88 -  wn_restore was modified to allow for those who like to
  189. **              diddle with a "wn_save"d screen image.  This also 
  190. **              corrected a potential problem with restoring saved 
  191. **              images.  Thanks to Mike Blaszczak for reporting the
  192. **              conflict.
  193. **
  194. **  08.01.88 -  added #if __TURBOC__ to windows.c
  195. **
  196. **  The following changes were incorporated in the 08.15.88 release:
  197. **
  198. **  07.24.88 -  wn_puts() was not fixing up color attributes on mono
  199. **              systems - corrected.
  200. **
  201. **  07.10.88 -  AZTEC "C" support.  Thanks to Dexter McCloud for his
  202. **              assistance.
  203. **
  204. **           -  help() has been modified to be compatiable with
  205. **              AZTEC.  Please take note as format of the ".hlp" file
  206. **              has changed. Refer to Intelc.hlp for examples.
  207. **
  208. **  07.03.88 -  WATCOM "C" support.
  209. **
  210. **           -  smartened up wn_frmopn() & wn_frmcls() to avoid
  211. **              possible NULL Pointer Assignments.
  212. **
  213. **           -  cleaned up pointer conversion warnings in wn_activate,
  214. **              wn_close, wn_open, wn_restore, wn_save. defined
  215. **              WNLPTR in windows.h.
  216. **            
  217. **           -  eliminated various warning messages during compilation,
  218. **              Lattice still complains for no valid reason on a few
  219. **              modules.
  220. **
  221. **           -  wns_alloc now use runtime routines allocating memory
  222. **              in the large model, dos routines in small code models.        
  223. **
  224. **           -  wns_alloc allocates and immediately frees all available 
  225. **              memory in the small data memory models before allocating far 
  226. **              memory. This eliminates memory mgmt clashes for some
  227. **              compilers.  
  228. **
  229. **           -  eliminated the need for "peek.c"
  230. **
  231. **  06.29.88 -  Corrected wn_activate to always fixup the cursor
  232. **              display for the activated window.  Thanks to
  233. **              John P. Toscano for reporting the problem.
  234. **
  235. **  06.12.88 -  Functions in wn_activate & wn_sup that call _vidblt
  236. **              and xferdata were taught how to deal with variable
  237. **              offsets from wns_alloc.  
  238. **
  239. **  The following changes were incorporated in the 06.01.88 release:
  240. **
  241. **  06.01.88 -  Incoporated data entry routines!
  242. **
  243. **              Smartened up wn_puts on border detection.
  244. **
  245. **  05.14.88 -  Added: wn_putc  (window put character)
  246. **                     wn_putca (window put character & attribute)
  247. **              Both can be found in the WN_PUTS.C file.          
  248. **
  249. **  05.10.88 -  wn_dmode was now properly sets PAINT & FLASH modes for
  250. **              EGA video adapters - Thanks to Mike Gross from
  251. **              West Germany
  252. **
  253. **  The following changes were incorporated in the 05.06.88 release:
  254. **
  255. **  05.06.88  - Support for MIX Power C added. - Tip of the hat to
  256. **              Bob Lewis for his assistance.
  257. **
  258. **  04.27.88  - The declaration of _stklen was removed from BOSSDEMO.C,
  259. **              this will keep Turbo C happy.
  260. **
  261. **  03.22.88  - wn_activate ability to detect window overlap and
  262. **              handle borderless windows was improved.
  263. **
  264. **  03.22.88  - popup was taught how to handle text on the 0th line.
  265. **
  266. **  03.19.88  - v_spage was loading BH instead of AL. Thanks to
  267. **              Ross Schaach (TRAX, Corp.)
  268. **
  269. **  02.10.88  - wn_gets was modified to insure that charcters being
  270. **              echoed stay within the window borders.  Thanks to
  271. **              Dave McCracken for the suggestion.
  272. **
  273. **  01.14.88  - static declarations of filbuf and showpage were removed
  274. **              in help.c
  275. **
  276. **  The following changes were incorporated in the 11.20.87 release:
  277. **
  278. **  11.13.87  - Microsoft Ver 5.0 & Quick C Support
  279. **
  280. **  09.21.87 - wn_activate was occasionally incorrectly determining
  281. **             window overlap.  Thanks to the folks at Datalight
  282. **             and Marden Marshall for reporting the problem and supplying
  283. **             test cases.
  284. **
  285. **  09.17.87 - wn_init() and wn_exit() were modified to work around
  286. **             Turbo C's inability to handing allocating far memory
  287. **             in the large model.
  288. **
  289. **  09.07.87 - wns_push(), wns_pop(), wn_activate(), wn_move(),
  290. **             wns_image(), and wns_blt() were modified to use a table
  291. **             of global segments, offsets, and pointers.
  292. **             This was done to support the wn_init() and wn_exit()
  293. **             functions.  
  294. **
  295. **             wn_init() and wn_exit() added.  wn_init() must be the
  296. **             first window fucntion called and it must only be called
  297. **             once.  It works in conjucntion with wn_exit() to insure
  298. **             that the screen image on application entry is restored
  299. **             to the "T" on application exit.  wn_exit() must be the 
  300. **             last window function called.  One can not be used without
  301. **             the other.  Both should be used but are neither are
  302. **             required.
  303. **
  304. **  09.05.87 - wn_delrow was calling v_locate with args reversed
  305. **             causing the wrong section of the screen to be cleared
  306. **             on single line borderless windows.  Thanks to Paul
  307. **             Stephenson of Rockwell International for reporting both
  308. **             the problem and the cure.
  309. **
  310. **  09.03.87 - All assembler routines in DLVLIB.ASM now save/restore
  311. **             the SI & DI registers.  Datalight 3.10 and later 
  312. **             specific. The -w and -p command line parameters must
  313. **             be used when compiling The Window BOSS source code
  314. **             under Datalight 3.10 and later.
  315. **
  316. **  The following changes were incorporated in the 08.22.87 release:
  317. **
  318. **  08.10.87 - Added wns_dmode() to set the display mode.  
  319. **             wns_dmode(PAINT) sets the window display mode to paint
  320. **             style, wn_dmode(FLASH) sets the display mode to 
  321. **             flash style.  This function eliminates the need to set
  322. **             wn_sbit and wns_mtflg to produce the desired effects.
  323. **
  324. **  07.17.87 - wn_puts() & wn_putsa() perform simple range checking to
  325. **             insure that the string being displayed is/stays within
  326. **             the target window.
  327. **
  328. **  06.22.87 - Let's "C" specific code removed. Support will continue
  329. **             for previous versions but Mark William's products will
  330. **             not be supported in this or future releases.  This
  331. **             action is being as the result of compiler limitations.
  332. **
  333. **  06.17.87 - wn_activate now does INSTANT screen updates. Ditto
  334. **             for wn_move.  wn_mtype() returns 1 for EGA.  
  335. **             BLAZING screen updates on EGAs.
  336. **
  337. **  06.07.87 - wns_wtext() was incorrectely computing the offset for
  338. **             windows with wn_wrap enabled!
  339. **
  340. **  The following changes were incorporated in the 06.04.87 release:
  341. **
  342. **  06.03.87  - Support for BORLAND Turbo C!!
  343. **
  344. **  The following changes were incorporated in the 05.12.87 release:
  345. **
  346. **  05.12.87  - wns_text was incorrectly compensating for single line
  347. **              borderless windows (Attachmate follow up).
  348. **
  349. **  05.04.87  - EXPLODING windows are now supported!! Simply add 800 to
  350. **              the video page when calling wn_open()!
  351. **
  352. **            - Calls of the form wn_insrow(wn,0) and wn_delrow(wn,0) 
  353. **              caused the border to be klobbered.  wn_insrow() and
  354. **              wn_delrow() were taught about borders.
  355. **
  356. **  03.31.87  - wn_printf [wns_wtext()] was incorrectly displaying graphics 
  357. **              characters. Thanks to Mark MacGee for reporting the problem.
  358. **
  359. **  03.23.87  - Attachmate reported that wn_gets was doing funny things
  360. **              on single line bordered windows on PCs and PC clones but
  361. **              was fine on ATs and AT clones!  It would appear that the
  362. **              PC/PC_CLONE BIOS can not deal with scrolling single line
  363. **              windows.  wn_delrow() was taught to erase single line
  364. **              windows and avoid using the BIOS for this special case.
  365. **
  366. **  03.19.87  - Argh!! Datalight elected to use M_I86 as a predefined
  367. **              equate.  References to M_I86 were changed to 
  368. **              MSCV3 | MSCV4. (Datalight 3.XX)
  369. **
  370. **  The following changes were incorporated in the 03.15.87 release:
  371. **
  372. **  03.01.87  - wn_activate was incorrectly computing the coordinates of
  373. **              unbordered windows.  Thanks to Peter Fletcher for reporting
  374. **              the problem and supplying a solution.
  375. **
  376. **  01.22.87  - wn_dborder() was using the wrong attribute (wn-style,
  377. **              instead of wn->bstyle). Thanks to Peter Partch for
  378. **              reporting the problem and supplying a solution.
  379. **
  380. **  01.06.87  - wn_activate was not walking through the current linked 
  381. **              list of windows. In rare cases this would cause two
  382. **              windows to be considered non-overlapping when in fact
  383. **              they were.  Thanks to Robert Klotz for reporting the
  384. **              problem.
  385. **
  386. **  The following changes were incorporated in the 01.01.87 release:
  387. **
  388. **  12.19.86  - Removed a needless call to wn_err(wn,"wn_printf") in
  389. **              wn_title().
  390. **
  391. **  12.16.86  - Improved centering logic for window titles.
  392. **              Thanks to Steve Liberty for suggesting the change.
  393. **
  394. **  12.14.86  - Incorporated compiler specific equates in windows.h.
  395. **
  396. **  12.13.86  - wns_mtype() returns 0 for mode 3, 2 for mode 0 or 2,
  397. **              and 7 for mode 7. (Internal Use - This change allowed
  398. **              for the prevention of blue on black characters when
  399. **              the video mode is 2 and a color monitor is in use.
  400. **              (wns_fixc & wns_mtype).
  401. **
  402. **            - BASIC support for Mark Williams "Lets C".
  403. **
  404. **            - Tightend free() checks in wn_activate, wn_close, and
  405. **              wn_restore.
  406. **
  407. **  12.12.86  - wn_puts() was not adding the original physical cursor
  408. **              location to the logical cursor location. 
  409. **              Thanks to Marek Glowacki for reporting the problem.
  410. **
  411. **  12.10.86  - Allow v_locate() to position the cursor slightly off
  412. **              the screen.  Previous limit was (24,79) current limit
  413. **              is (25,80) which is just beyond the edge of the screen.
  414. **              This was done to insure that hidden cursors remain out
  415. **              of view.
  416. **
  417. **            - Improved cursor handling when wn_dmaflg = FALSE.
  418. **
  419. **  12.09.86  - Taught wn_activate to honor cursor position of window
  420. **              being activated. This will insure the cursor is always
  421. **              in the right logical and physical position. 
  422. **              More cosmetic enhancement than logic error correction.
  423. **
  424. **  The following changes were incorporated in the 12.01.86 release:
  425. **
  426. **  11.28.86  - Reverse video attribute was not being set correctly
  427. **              on MGAs - corrected.
  428. **
  429. **  11.19.86  - wn_dborder was incorrectly computing the row offset.
  430. **              Thanks to Steve Thatcher for reporting the problem.
  431. **              
  432. **  11.16.86  - Added ".smeth" member to window control block. This 
  433. **              member defines the scrolling method to be used in
  434. **              the window. It can be set to BIOS or DMAS, the default
  435. **              is DMAS.  
  436. **
  437. **            - All routines that reference wn_activate will return
  438. **              NULL if the window could not be activated.  This is 
  439. **              usually due to a lack of free memory.
  440. **
  441. **  The following changes were incorporated in the 11.14.86 release:
  442. **
  443. **  11.13.86  - Closing windows in random order when exiting "sometimes"
  444. **              produced null pointer assignment error messages or 
  445. **              incorrect screen images - corrected.
  446. **
  447. **            - wn_natrib() was not storing the newly defined window
  448. **              attribute in the window control block - corrected.
  449. **
  450. **  11.09.86  - Support for Datalight C added.
  451. **
  452. **  11.02.86  - v_border() added.  Allows color of border area to be
  453. **              set on CGAs with color monitors.
  454. **
  455. **  11.01.86  - wn_fixcsr was not adding the original physical cursor
  456. **              location to the logical cursor location. 
  457. **              Thanks to Bill Harts for reporting the problem.
  458. **
  459. **            - wn_puts was computing the virtual cursor location
  460. **              incorrectly. Thanks to Eric Lundstrom!
  461. **
  462. **            - Logic to dectect null strings was incorporated into
  463. **              _vidblt.  This will prevent 64k worth of trash from
  464. **              being blitted to the video ram.
  465. **
  466. **  10.30.86  - All references to MSC in "windows.h" were changed
  467. **              to M_I86.  This forces "windows.fns" to be included
  468. **              under Microsoft C.  This change was also applied to
  469. **              "windows.c".
  470. **
  471. **  10.26.86  - Full float, long, etc. support for wn_printf in
  472. **              all Lattice versions.  Microsoft 3.XX is the only
  473. **              one in the dark ages.
  474. **
  475. **  10.23.86  - Tip of the hat to Russ Thackson for the improved
  476. **              overlaping window detection technique incorporated
  477. **              in wn_activate().
  478. **
  479. **  The following changes were incorporated in the 10.22.86 release:
  480. **
  481. **  10.22.86  - wn_activate() was causing unnecessary window 
  482. **              thrashing on non-overlapping windows. Corrected.
  483. **
  484. **  The following changes were incorporated in the 10.10.86 release:
  485. **
  486. **  09.27.86  - Tiled windows are now supported! wn_activate() added.
  487. **
  488. **            - wn_gets() was not calling wns_err - corrected.  This
  489. **              was not a bug, just continued support for wild pointer
  490. **              checks.
  491. **
  492. **  09.25.86  - New logic for vidblt(). Fast mode now works on color
  493. **              without causing snow or flicker!!  Video updates now 
  494. **              occur at the fastest possible speed!  The effect of
  495. **              wn_sbit now conforms exactly to the description in the
  496. **              manual.
  497. **
  498. **            - wn_printf (CI86) now has full float support. Thanks
  499. **              to Rob Sullivan for reporting the CI86 problem. Lattice
  500. **              and MSC Version 3.0 are the only hold outs for full
  501. **              wn_print support.  MSC Version 3.0 support will never
  502. **              be incorporated. If you are using MSC Version 3.00 
  503. **              you will have to upgrade to Version 4.XX.  The price
  504. **              of the update is well worth it. Version 4.00 is a
  505. **              work of art! Lattice support will be delayed until
  506. **              Lattice gets around to supporting vsprintf() as
  507. **              defined by the evolving ANSI standard.
  508. **
  509. **  09.17.86  - seperate modules to decrease memory overhead.
  510. **
  511. **            - link list support (wn_open,wn_close,WINDOWPTR struct)
  512. **              This is the ground work for tiled window support.
  513. **
  514. **  09.02.86  - use registers in wns_savres() for speed (MSC).
  515. **
  516. **  The following changes were incorporated in the 08.30.86 release:
  517. **
  518. **  08.28.86  - wn_gets was delclared as (char *) but returning
  519. **              (void).  Corrected to return (char *).
  520. **
  521. **  08.27.86  - wns_wtext() was not correctly handling borderless
  522. **              windows. Corrected.
  523. **
  524. **            - wn_printf() was not correctly handing cases such as:
  525. **              wn_printf(wn,"%s %d %f %d\n", "text", 2, 2.2, 5);
  526. **              The window boss now supports a complete implementation
  527. **              of printf formatting under Microsoft C Version 4.00.
  528. **              All other compilers and versions support an INTEGER only
  529. **              wn_printf.  This will be corrected in a future release.
  530. **
  531. **  08.16.86  - Added wn_gets(). Get string in window with validation.
  532. **
  533. **  The following chages were incorporated in the 06.02.86 release.
  534. **
  535. **  06.02.86  - v_smode was using bh instead of ah. Corrected.
  536. **              Thanks to Rob Rainwater!!
  537. **
  538. **  05.26.86  - Added wn_natrib. Set new window attribute NOW!
  539. **
  540. **  05.25.86  - Corrected a potential problem with a couple of the routies
  541. **              in MSVLIB.ASM. Registers SI & DI were being used but not
  542. **              being saved. This "may" cause spurious probles with "C"
  543. **              programs that use register variables.  Microsoft C 3.0 only.
  544. **
  545. **            - wn_titla was not calling wns_fixc. Corrected.
  546. **
  547. **  05.24.86  - Added wn_titla. write window title with attributes.
  548. **
  549. **  05.10.86  - wn_putsa was not calling wns_fixc.  This caused problems
  550. **              when CGA was in mode bw80 but putsa was called with a
  551. **              valid color atrib.
  552. **
  553. **  The following changes were incororated in the 05.08.86 release.
  554. **
  555. **  05.07.86  - Additions for Microsoft "C" version 3.0
  556. **
  557. **  05.05.86  - wn_printf fix for lattice version 3.0.
  558. **
  559. **  04.25.86  - Added support for handling backspace, delete, & BELL
  560. **              characters correctly (wns_wtext).
  561. **
  562. **              Incorporated v_wtty in vlib.asm.
  563. **
  564. **  Initial Release..
  565. **
  566. **  01.24.86  - Initial release with a bit of a false start thanks to
  567. **              Microsoft's Lib.
  568. **
  569. */
  570.  
  571.